400 |
How can I display the column using currency format and enlarge the font for certain values
|
399 |
How can I get the number of occurrences of a specified string in the cell
public void init() { COM com_Column,com_Items; anytype var_Column,var_Items; int h; ; super(); excombobox1.Columns().Add(""); var_Column = COM::createFromVariant(excombobox1.Columns().Add("occurrences")); com_Column = var_Column; com_Column.ComputedField("lower(%0) count 'o'"); com_Column.FormatColumn("'contains ' + value + ' of \\'o\\' chars'"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root"); com_Items.InsertItem(h,,"Child 1 oooof the root"); com_Items.InsertItem(h,,"Child 2"); com_Items.InsertItem(h,,"Child 3"); com_Items.ExpandItem(h,true); } |
398 |
How can I display dates in my format
|
397 |
How can I display dates in short format
|
396 |
How can I display dates in long format
|
395 |
How can I display only the right part of the cell
public void init() { COM com_Column,com_Items; anytype var_Column,var_Items; int h; ; super(); excombobox1.Columns().Add(""); var_Column = COM::createFromVariant(excombobox1.Columns().Add("Right")); com_Column = var_Column; com_Column.ComputedField("%0 right 2"); com_Column.FormatColumn("'\"' + value + '\"'"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root"); com_Items.InsertItem(h,,"Child 1"); com_Items.InsertItem(h,,"Child 2"); com_Items.InsertItem(h,,"SChild 3"); com_Items.ExpandItem(h,true); } |
394 |
How can I display only the left part of the cell
public void init() { COM com_Items; anytype var_Items; int h; ; super(); excombobox1.Columns().Add(""); COM::createFromVariant(excombobox1.Columns().Add("Left")).ComputedField("%0 left 2"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root"); com_Items.InsertItem(h,,"Child 1"); com_Items.InsertItem(h,,"Child 2"); com_Items.InsertItem(h,,"SChild 3"); com_Items.ExpandItem(h,true); } |
393 |
How can I display true or false instead 0 and -1
|
392 |
How can I display icons or images instead numbers
public void init() { COM com_Column,com_Items; anytype var_Column,var_Items; str var_s; ; super(); var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql"; var_s = var_s + "Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0"; var_s = var_s + "ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN"; var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="; excombobox1.Images(COMVariant::createFromStr(var_s)); var_Column = COM::createFromVariant(excombobox1.Columns().Add("Icons")); com_Column = var_Column; com_Column.Def(17/*exCellCaptionFormat*/,COMVariant::createFromInt(1)); com_Column.FormatColumn("'The cell displays the icon <img>'+value+'</img> instead ' + value"); var_Items = excombobox1.Items(); com_Items = var_Items; com_Items.AddItem(COMVariant::createFromInt(1)); com_Items.AddItem(COMVariant::createFromInt(2)); com_Items.AddItem(COMVariant::createFromInt(3)); } |
391 |
How can I display the column using currency
|
390 |
How can I display the currency only for not empty cells
|
389 |
Is there a function to display the number of days between two date including the number of hours
|
388 |
Is there a function to display the number of days between two date including the number of hours
|
387 |
How can I display the number of days between two dates
|
386 |
How can I get second part of the date
|
385 |
How can I get minute part of the date
|
384 |
How can I check the hour part only so I know it was afternoon
public void init() { COM com_ConditionalFormat,com_Items; anytype var_ConditionalFormat,var_Items; ; super(); var_ConditionalFormat = COM::createFromObject(excombobox1.ConditionalFormats()).Add("hour(%0)>=12"); com_ConditionalFormat = var_ConditionalFormat; com_ConditionalFormat.Bold(true); excombobox1.Columns().Add("Date"); COM::createFromVariant(excombobox1.Columns().Add("Hour")).ComputedField("hour(%0)"); var_Items = excombobox1.Items(); com_Items = var_Items; com_Items.AddItem(COMVariant::createFromUtcDateTime(str2Datetime("1/11/2001 10:00:00",213))); com_Items.AddItem(COMVariant::createFromUtcDateTime(str2Datetime("2/22/2002 11:00:00",213))); com_Items.AddItem(COMVariant::createFromUtcDateTime(str2Datetime("3/13/2003 12:00:00",213))); com_Items.AddItem(COMVariant::createFromUtcDateTime(str2Datetime("4/14/2004 13:00:00",213))); } |
383 |
What about a function to get the day in the week, or days since Sunday
|
382 |
Is there any function to get the day of the year or number of days since January 1st
|
381 |
How can I display only the day of the date
|
380 |
How can I display only the month of the date
|
379 |
How can I get only the year part from a date expression
|
378 |
Can I convert the expression to date
|
377 |
Can I convert the expression to a number, double or float
|
376 |
How can I display dates in long format
|
375 |
How can I display dates in short format
|
374 |
How can I display the time only of a date expression
|
373 |
Is there any function to display currencies, or money formatted as in the control panel
|
372 |
How can I convert the expression to a string so I can look into the date string expression for month's name
|
371 |
Can I display the absolute value or positive part of the number
|
370 |
Is there any function to get largest number with no fraction part that is not greater than the value
|
369 |
Is there any function to round the values base on the .5 value
|
368 |
How can I get or display the integer part of the cell
|
367 |
How can I display names as proper ( first leter of the word must be in uppercase, and the rest in lowercase )
public void init() { COM com_Items; anytype var_Items; int h; ; super(); COM::createFromVariant(excombobox1.Columns().Add("")).ComputedField("proper(%0)"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("root"); com_Items.InsertItem(h,,"child child"); com_Items.InsertItem(h,,"child child"); com_Items.InsertItem(h,,"child child"); com_Items.ExpandItem(h,true); } |
366 |
Is there any option to display cells in uppercase
public void init() { COM com_Items; anytype var_Items; int h; ; super(); COM::createFromVariant(excombobox1.Columns().Add("")).ComputedField("upper(%0)"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root"); com_Items.InsertItem(h,,"Child 1"); com_Items.InsertItem(h,,"Child 2"); com_Items.InsertItem(h,,"Chld 3"); com_Items.ExpandItem(h,true); } |
365 |
Is there any option to display cells in lowercase
public void init() { COM com_Items; anytype var_Items; int h; ; super(); COM::createFromVariant(excombobox1.Columns().Add("")).ComputedField("lower(%0)"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root"); com_Items.InsertItem(h,,"Child 1"); com_Items.InsertItem(h,,"Child 2"); com_Items.InsertItem(h,,"Chld 3"); com_Items.ExpandItem(h,true); } |
364 |
How can I mark the cells that has a specified type, ie strings only
public void init() { COM com_ConditionalFormat,com_Items; anytype var_ConditionalFormat,var_Items; int h; ; super(); var_ConditionalFormat = COM::createFromObject(excombobox1.ConditionalFormats()).Add("type(%0) = 8"); com_ConditionalFormat = var_ConditionalFormat; com_ConditionalFormat.ForeColor(WinApi::RGB2int(255,0,0)); excombobox1.Columns().Add(""); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root"); com_Items.InsertItem(h,,"Child 1"); com_Items.InsertItem(h,,COMVariant::createFromInt(2)); com_Items.InsertItem(h,,"Chld 3"); com_Items.ExpandItem(h,true); } |
363 |
How can I bold the items that contains data or those who displays empty strings
public void init() { COM com_ConditionalFormat,com_Items; anytype var_ConditionalFormat,var_Items; int h,hC; ; super(); var_ConditionalFormat = COM::createFromObject(excombobox1.ConditionalFormats()).Add("not len(%1)=0"); com_ConditionalFormat = var_ConditionalFormat; com_ConditionalFormat.Bold(true); excombobox1.Columns().Add("C1"); excombobox1.Columns().Add("C2"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root"); com_Items.InsertItem(h,,"Child 1"); hC = com_Items.InsertItem(h,,"Child 2"); com_Items.CellCaption(hC,COMVariant::createFromInt(1),"1"); com_Items.InsertItem(h,,"Child 3"); com_Items.ExpandItem(h,true); } |
362 |
Can I change the background color for items or cells that contains a specified string
public void init() { COM com_ConditionalFormat,com_Items; anytype var_ConditionalFormat,var_Items; int h; ; super(); var_ConditionalFormat = COM::createFromObject(excombobox1.ConditionalFormats()).Add("%0 contains 'hi'"); com_ConditionalFormat = var_ConditionalFormat; com_ConditionalFormat.BackColor(WinApi::RGB2int(255,0,0)); excombobox1.Columns().Add(""); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root"); com_Items.InsertItem(h,,"Child 1"); com_Items.InsertItem(h,,"Child 2"); com_Items.InsertItem(h,,"Chld 3"); com_Items.ExpandItem(h,true); } |
361 |
Is there any option to change the fore color for cells or items that ends with a specified string
public void init() { COM com_ConditionalFormat,com_Items; anytype var_ConditionalFormat,var_Items; int h; ; super(); var_ConditionalFormat = COM::createFromObject(excombobox1.ConditionalFormats()).Add("%0 endwith '22'"); com_ConditionalFormat = var_ConditionalFormat; com_ConditionalFormat.ForeColor(WinApi::RGB2int(255,0,0)); excombobox1.Columns().Add(""); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root"); com_Items.InsertItem(h,,"Child 1"); com_Items.InsertItem(h,,"Child 1.22"); com_Items.InsertItem(h,,"Child 2.22"); com_Items.ExpandItem(h,true); } |
360 |
How can I highlight the cells or items that starts with a specified string
public void init() { COM com_ConditionalFormat,com_Items; anytype var_ConditionalFormat,var_Items; int h; ; super(); var_ConditionalFormat = COM::createFromObject(excombobox1.ConditionalFormats()).Add("%0 startwith 'C'"); com_ConditionalFormat = var_ConditionalFormat; com_ConditionalFormat.Underline(true); excombobox1.Columns().Add(""); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root"); com_Items.InsertItem(h,,"Child 1"); com_Items.InsertItem(h,,"Child 2"); com_Items.InsertItem(h,,"SChild 3"); com_Items.ExpandItem(h,true); } |
359 |
How can I change the background color or the visual appearance using ebn for a particular column
public void init() { COM com_Columns; anytype var_Columns; ; super(); excombobox1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn"); var_Columns = excombobox1.Columns(); com_Columns = var_Columns; com_Columns.Add("Column 1"); COM::createFromVariant(com_Columns.Add("Column 2")).Def(7/*exHeaderBackColor*/,COMVariant::createFromInt(16777216)); COM::createFromVariant(com_Columns.Add("Column 3")).Def(7/*exHeaderBackColor*/,COMVariant::createFromInt(16777471)); com_Columns.Add("Column 4"); } |
358 |
How can I change the background color for a particular column
|
357 |
Does your control support prompt feature
|
356 |
How can I display the column's header using multiple lines
public void init() { ; super(); excombobox1.HeaderHeight(128); excombobox1.HeaderSingleLine(false); COM::createFromVariant(excombobox1.Columns().Add("This is just a column that should break the header.")).Width(32); excombobox1.Columns().Add("This is just another column that should break the header."); } |
355 |
How can I sort the value gets listed in the drop down filter window
public void init() { COM com_Column,com_Column1,com_Items; anytype var_Column,var_Column1,var_Items; int h; ; super(); excombobox1.LinesAtRoot(-1/*exLinesAtRoot*/); excombobox1.MarkSearchColumn(false); excombobox1.Description(0/*exFilterBarAll*/,""); excombobox1.Description(1/*exFilterBarBlanks*/,""); excombobox1.Description(2/*exFilterBarNonBlanks*/,""); var_Column = COM::createFromVariant(excombobox1.Columns().Add("P1")); com_Column = var_Column; com_Column.DisplayFilterButton(true); com_Column.DisplayFilterPattern(false); com_Column.FilterList(16/*exSortItemsDesc*/); var_Column1 = COM::createFromVariant(excombobox1.Columns().Add("P2")); com_Column1 = var_Column1; com_Column1.DisplayFilterButton(true); com_Column1.DisplayFilterPattern(false); com_Column1.FilterList(32/*exSortItemsAsc*/); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Z3"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"C"); com_Items.CellCaption(com_Items.InsertItem(h,,"Z1"),COMVariant::createFromInt(1),"B"); com_Items.CellCaption(com_Items.InsertItem(h,,"Z2"),COMVariant::createFromInt(1),"A"); com_Items.ExpandItem(h,true); } |
354 |
Is there any property to disable the popup/context menu being shown when the user does a right click in the control's label area
|
353 |
How can I align the text/caption on the scroll bar
public void init() { ; super(); excombobox1.ScrollPartCaption(1/*exHScroll*/,512/*exLowerBackPart*/,"left"); excombobox1.ScrollPartCaptionAlignment(1/*exHScroll*/,512/*exLowerBackPart*/,0/*LeftAlignment*/); excombobox1.ScrollPartCaption(1/*exHScroll*/,128/*exUpperBackPart*/,"right"); excombobox1.ScrollPartCaptionAlignment(1/*exHScroll*/,128/*exUpperBackPart*/,2/*RightAlignment*/); excombobox1.ColumnAutoResize(false); excombobox1.Columns().Add(1); excombobox1.Columns().Add(2); excombobox1.Columns().Add(3); excombobox1.Columns().Add(4); excombobox1.Columns().Add(5); excombobox1.Columns().Add(6); } |
352 |
Does you control support RTL languages or if there is a property RightToLeft
public void init() { COM com_Column,com_Items; anytype var_Column,var_Items; ; super(); excombobox1.RightToLeft(true); excombobox1.ItemsAllowSizing(-1/*exResizeItem*/); excombobox1.DrawGridLines(1/*exHLines*/); excombobox1.LinesAtRoot(-1/*exLinesAtRoot*/); excombobox1.ScrollBySingleLine(true); excombobox1.DefaultItemHeight(64); var_Column = COM::createFromVariant(excombobox1.Columns().Add("Column")); com_Column = var_Column; com_Column.Alignment(2/*RightAlignment*/); com_Column.HeaderAlignment(2/*RightAlignment*/); com_Column.EditAlignment(2/*RightAlignment*/); var_Items = excombobox1.Items(); com_Items = var_Items; com_Items.AddItem("Item 1"); com_Items.ItemHeight(com_Items.InsertItem(com_Items.AddItem("Parent"),,"Item 2"),48); com_Items.AddItem("Item 3"); com_Items.ExpandItem(com_Items.ItemByIndex(1),true); } |
351 |
How do I enable resizing all the items at runtime
public void init() { COM com_Items; anytype var_Items; ; super(); excombobox1.ItemsAllowSizing(1/*exResizeAllItems*/); excombobox1.DrawGridLines(1/*exHLines*/); excombobox1.Columns().Add("Column"); excombobox1.Items().AddItem("Item 1"); var_Items = excombobox1.Items(); com_Items = var_Items; com_Items.ItemHeight(com_Items.AddItem("Item 2"),48); excombobox1.Items().AddItem("Item 3"); } |
350 |
How can I remove the filter
|
349 |
How do I display the icons being selected in the control's label
|
348 |
How do I select a value
public void init() { COM com_Items; anytype var_Items; int h; ; super(); excombobox1.IntegralHeight(true); excombobox1.LinesAtRoot(1/*exGroupLinesAtRoot*/); excombobox1.TreeColumnIndex(1); excombobox1.Columns().Add("Column 1"); excombobox1.Columns().Add("Column 2"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root 1.1"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"Root 1.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 1.1"),COMVariant::createFromInt(1),"Child 1.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 2.1"),COMVariant::createFromInt(1),"Child 2.2"); com_Items.ExpandItem(h,true); h = com_Items.AddItem("Root 2.1"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"Root 2.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 1.1"),COMVariant::createFromInt(1),"Child 1.2"); excombobox1.Value("Root 1.1"); } |
347 |
How do I select a value
public void init() { COM com_Items; anytype var_Items; int h; ; super(); excombobox1.IntegralHeight(true); excombobox1.LinesAtRoot(1/*exGroupLinesAtRoot*/); excombobox1.TreeColumnIndex(1); excombobox1.Columns().Add("Column 1"); excombobox1.Columns().Add("Column 2"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root 1.1"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"Root 1.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 1.1"),COMVariant::createFromInt(1),"Child 1.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 2.1"),COMVariant::createFromInt(1),"Child 2.2"); com_Items.ExpandItem(h,true); h = com_Items.AddItem("Root 2.1"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"Root 2.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 1.1"),COMVariant::createFromInt(1),"Child 1.2"); excombobox1.Select(COMVariant::createFromInt(1),"Root 1.2"); } |
346 |
How do change the visual appearance for the drop down border, using EBN
public void init() { ; super(); excombobox1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn"); excombobox1.DropDownBorder(16777216); } |
345 |
How do I remove the drop down's border
|
344 |
How can I change the foreground color for edit controls
public void init() { COM com_Items; anytype var_Items; int h; ; super(); excombobox1.ForeColorEdit(WinApi::RGB2int(255,0,0)); excombobox1.IntegralHeight(true); excombobox1.LinesAtRoot(1/*exGroupLinesAtRoot*/); excombobox1.TreeColumnIndex(1); excombobox1.Columns().Add("Column 1"); excombobox1.Columns().Add("Column 2"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root 1.1"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"Root 1.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 1.1"),COMVariant::createFromInt(1),"Child 1.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 2.1"),COMVariant::createFromInt(1),"Child 2.2"); com_Items.ExpandItem(h,true); h = com_Items.AddItem("Root 2.1"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"Root 2.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 1.1"),COMVariant::createFromInt(1),"Child 1.2"); excombobox1.Select(COMVariant::createFromInt(0),"Root 1.1"); } |
343 |
How can I change the background color for edit controls
public void init() { COM com_Items; anytype var_Items; int h; ; super(); excombobox1.BackColorEdit(WinApi::RGB2int(255,0,0)); excombobox1.IntegralHeight(true); excombobox1.LinesAtRoot(1/*exGroupLinesAtRoot*/); excombobox1.TreeColumnIndex(1); excombobox1.Columns().Add("Column 1"); excombobox1.Columns().Add("Column 2"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root 1.1"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"Root 1.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 1.1"),COMVariant::createFromInt(1),"Child 1.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 2.1"),COMVariant::createFromInt(1),"Child 2.2"); com_Items.ExpandItem(h,true); h = com_Items.AddItem("Root 2.1"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"Root 2.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 1.1"),COMVariant::createFromInt(1),"Child 1.2"); excombobox1.Select(COMVariant::createFromInt(0),"Root 1.1"); } |
342 |
How can I hide the drop down buttons when the control loses the focus
public void init() { COM com_Items; anytype var_Items; int h; ; super(); excombobox1.HideDropDownButton(true); excombobox1.IntegralHeight(true); excombobox1.LinesAtRoot(1/*exGroupLinesAtRoot*/); excombobox1.TreeColumnIndex(1); excombobox1.Columns().Add("Column 1"); excombobox1.Columns().Add("Column 2"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root 1.1"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"Root 1.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 1.1"),COMVariant::createFromInt(1),"Child 1.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 2.1"),COMVariant::createFromInt(1),"Child 2.2"); com_Items.ExpandItem(h,true); h = com_Items.AddItem("Root 2.1"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"Root 2.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 1.1"),COMVariant::createFromInt(1),"Child 1.2"); } |
341 |
How can I ensure that the drop down portions doesn't show partial items
public void init() { COM com_Items; anytype var_Items; int h; ; super(); excombobox1.IntegralHeight(true); excombobox1.LinesAtRoot(1/*exGroupLinesAtRoot*/); excombobox1.TreeColumnIndex(1); excombobox1.Columns().Add("Column 1"); excombobox1.Columns().Add("Column 2"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root 1.1"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"Root 1.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 1.1"),COMVariant::createFromInt(1),"Child 1.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 2.1"),COMVariant::createFromInt(1),"Child 2.2"); com_Items.ExpandItem(h,true); h = com_Items.AddItem("Root 2.1"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"Root 2.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 1.1"),COMVariant::createFromInt(1),"Child 1.2"); } |
340 |
How can I close the drop down window when user double clicks it
public void init() { COM com_Items; anytype var_Items; int h; ; super(); excombobox1.CloseOnDblClk(true); excombobox1.LinesAtRoot(1/*exGroupLinesAtRoot*/); excombobox1.TreeColumnIndex(1); excombobox1.Columns().Add("Column 1"); excombobox1.Columns().Add("Column 2"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Root 1.1"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"Root 1.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 1.1"),COMVariant::createFromInt(1),"Child 1.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 2.1"),COMVariant::createFromInt(1),"Child 2.2"); com_Items.ExpandItem(h,true); h = com_Items.AddItem("Root 2.1"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"Root 2.2"); com_Items.CellCaption(com_Items.InsertItem(h,,"Child 1.1"),COMVariant::createFromInt(1),"Child 1.2"); } |
339 |
How do I get the handle of the drop down window
|
338 |
How do I specify the height of the control's label
|
337 |
The control selects the portion of text that doesn't match with the selected item. How can I avoid that
|
336 |
How can I show the drop down window as soon as user starts typing in the control
|
335 |
How do I change the text in the edit or label area
|
334 |
How do I lock or make read-only the control
|
333 |
How do I let user to resize only the height of the drop down window, at runtime
|
332 |
How do I let user to resize only the width of the drop down window, at runtime
public void init() { COM com_Items; anytype var_Items; ; super(); excombobox1.AllowSizeGrip(true); excombobox1.AllowVResize(false); excombobox1.Columns().Add("Column"); var_Items = excombobox1.Items(); com_Items = var_Items; com_Items.AddItem("Item 3"); com_Items.AddItem("Item 1"); com_Items.AddItem("Item 2"); } |
331 |
How do I let user to resize the drop down window, at runtime
|
330 |
How do I specify the height of the drop down window
public void init() { COM com_Items; anytype var_Items; ; super(); excombobox1.HeightList(,400); excombobox1.MinWidthList(100); excombobox1.AllowSizeGrip(true); excombobox1.Columns().Add("Column"); var_Items = excombobox1.Items(); com_Items = var_Items; com_Items.AddItem("Item 3"); com_Items.AddItem("Item 1"); com_Items.AddItem("Item 2"); } |
329 |
How do I specify the minimum height of the drop down window
public void init() { COM com_Items; anytype var_Items; ; super(); excombobox1.MinHeightList(100); excombobox1.AllowSizeGrip(true); excombobox1.Columns().Add("Column"); var_Items = excombobox1.Items(); com_Items = var_Items; com_Items.AddItem("Item 3"); com_Items.AddItem("Item 1"); com_Items.AddItem("Item 2"); } |
328 |
How do I specify the width of the drop down window
|
327 |
How do I specify the minimum width of the drop down window
public void init() { COM com_Items; anytype var_Items; ; super(); excombobox1.MinWidthList(100); excombobox1.AllowSizeGrip(true); excombobox1.Columns().Add("Column"); var_Items = excombobox1.Items(); com_Items = var_Items; com_Items.AddItem("Item 3"); com_Items.AddItem("Item 1"); com_Items.AddItem("Item 2"); } |
326 |
I have multiple columns, how can I display a single edit in the control's label
|
325 |
How do I turn off the auto complete feature
|
324 |
The control supports three styles: Simple, DropDown and DropDownList. How can I change the style
|
323 |
Is there any option to align the header to the left and the data to the right
public void init() { COM com_Column,com_Items; anytype var_Column,var_Items; ; super(); COM::createFromVariant(excombobox1.Columns().Add("Left")).Alignment(0/*LeftAlignment*/); var_Column = COM::createFromVariant(excombobox1.Columns().Add("Right")); com_Column = var_Column; com_Column.Alignment(2/*RightAlignment*/); com_Column.HeaderAlignment(2/*RightAlignment*/); com_Column.EditAlignment(2/*RightAlignment*/); var_Items = excombobox1.Items(); com_Items = var_Items; com_Items.CellCaption(com_Items.AddItem("left"),COMVariant::createFromInt(1),"right"); } |
322 |
How do I change the control's border, using your EBN files
public void init() { ; super(); excombobox1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn"); excombobox1.Appearance(16777216); } |
321 |
Can I change the default border of the tooltip, using your EBN files
public void init() { ; super(); excombobox1.ToolTipDelay(1); excombobox1.ToolTipWidth(364); excombobox1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn"); excombobox1.Background(64/*exToolTipAppearance*/,0x1000000); COM::createFromVariant(excombobox1.Columns().Add("tootip")).ToolTip("this is a tooltip assigned to a column"); } |
320 |
Can I change the background color for the tooltip
public void init() { ; super(); excombobox1.ToolTipDelay(1); excombobox1.ToolTipWidth(364); excombobox1.Background(65/*exToolTipBackColor*/,WinApi::RGB2int(255,0,0)); COM::createFromVariant(excombobox1.Columns().Add("tootip")).ToolTip("this is a tooltip assigned to a column"); } |
319 |
Does the tooltip support HTML format
|
318 |
Can I change the forecolor for the tooltip
public void init() { ; super(); excombobox1.ToolTipDelay(1); excombobox1.ToolTipWidth(364); excombobox1.Background(66/*exToolTipForeColor*/,WinApi::RGB2int(255,0,0)); COM::createFromVariant(excombobox1.Columns().Add("tootip")).ToolTip("this is a tooltip assigned to a column"); } |
317 |
Can I change the foreground color for the tooltip
|
316 |
How can I merge cells
public void init() { COM com_Items; anytype var_Items; int h; ; super(); excombobox1.DrawGridLines(-1/*exAllLines*/); excombobox1.MarkSearchColumn(false); excombobox1.Columns().Add("C1"); excombobox1.Columns().Add("C2"); excombobox1.Columns().Add("C3"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("this cell merges the first two columns"); com_Items.CellMerge(h,COMVariant::createFromInt(0),COMVariant::createFromInt(1)); h = com_Items.AddItem(); com_Items.CellCaption(h,COMVariant::createFromInt(1),"this cell merges the last two columns"); com_Items.CellMerge(h,COMVariant::createFromInt(1),COMVariant::createFromInt(2)); h = com_Items.AddItem("this cell merges the all three columns"); com_Items.CellMerge(h,COMVariant::createFromInt(0),COMVariant::createFromInt(1)); com_Items.CellMerge(h,COMVariant::createFromInt(0),COMVariant::createFromInt(2)); h = com_Items.AddItem("this draws a divider item"); com_Items.ItemDivider(h,0); } |
315 |
How can I merge cells
|
314 |
How can I change the color for separator / dividers items
public void init() { COM com_Items; anytype var_Items; int h; ; super(); excombobox1.MarkSearchColumn(false); excombobox1.TreeColumnIndex(-1); excombobox1.ScrollBySingleLine(false); excombobox1.Columns().Add("C1"); excombobox1.Columns().Add("C2"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Cell 1"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); com_Items.CellSingleLine(h,COMVariant::createFromInt(1),false); h = com_Items.AddItem(); com_Items.ItemDivider(h,0); com_Items.ItemDividerLine(h,4/*DoubleDotLine*/); com_Items.ItemDividerLineAlignment(h,1/*DividerCenter*/); com_Items.ItemHeight(h,6); com_Items.SelectableItem(h,false); h = com_Items.AddItem("Cell 2"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); com_Items.CellSingleLine(h,COMVariant::createFromInt(1),false); } |
313 |
How can I add separator - dividers items
public void init() { COM com_Items; anytype var_Items; int h; ; super(); excombobox1.MarkSearchColumn(false); excombobox1.TreeColumnIndex(-1); excombobox1.ScrollBySingleLine(false); excombobox1.Columns().Add("C1"); excombobox1.Columns().Add("C2"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("Cell 1"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); com_Items.CellSingleLine(h,COMVariant::createFromInt(1),false); h = com_Items.AddItem(); com_Items.ItemDivider(h,0); com_Items.ItemDividerLine(h,4/*DoubleDotLine*/); com_Items.ItemDividerLineAlignment(h,1/*DividerCenter*/); com_Items.ItemHeight(h,6); com_Items.SelectableItem(h,false); h = com_Items.AddItem("Cell 2"); com_Items.CellCaption(h,COMVariant::createFromInt(1),"This is bit of text that's shown on multiple lines. This is bit of text that's shown on multiple lines."); com_Items.CellSingleLine(h,COMVariant::createFromInt(1),false); } |
312 |
Can I change the style of the line being displayed by a divider item
|
311 |
Can I remove the line being displayed by a divider item
|
310 |
How can I display a divider item, merging all cells
|
309 |
How can I fix or lock items
public void init() { COM com_Items; anytype var_Items; ; super(); excombobox1.Columns().Add("Default"); var_Items = excombobox1.Items(); com_Items = var_Items; com_Items.LockedItemCount(0/*exTop*/,1); com_Items.CellCaption(com_Items.LockedItem(0/*exTop*/,0),COMVariant::createFromInt(0),"This is a locked item, fixed to the top side of the control."); com_Items.ItemBackColor(com_Items.LockedItem(0/*exTop*/,0),WinApi::RGB2int(196,196,186)); com_Items.LockedItemCount(2/*exBottom*/,2); com_Items.CellCaption(com_Items.LockedItem(2/*exBottom*/,0),COMVariant::createFromInt(0),"This is a locked item, fixed to the top side of the control."); com_Items.ItemBackColor(com_Items.LockedItem(2/*exBottom*/,0),WinApi::RGB2int(196,196,186)); com_Items.CellCaption(com_Items.LockedItem(2/*exBottom*/,1),COMVariant::createFromInt(0),"This is a locked item, fixed to the top side of the control."); com_Items.ItemBackColor(com_Items.LockedItem(2/*exBottom*/,1),WinApi::RGB2int(186,186,186)); } |
308 |
How can I fix or lock an item on the bottom side of the control
public void init() { COM com_Items; anytype var_Items; int h; ; super(); excombobox1.Columns().Add("Default"); var_Items = excombobox1.Items(); com_Items = var_Items; com_Items.LockedItemCount(2/*exBottom*/,1); com_Items.CellCaption(com_Items.LockedItem(2/*exBottom*/,0),COMVariant::createFromInt(0),"This is a locked item, fixed to the bottom side of the control."); h = com_Items.AddItem("Root 1"); com_Items.InsertItem(h,,"Child 1"); com_Items.InsertItem(h,,"Child 2"); com_Items.ExpandItem(h,true); } |
307 |
How can I fix or lock an item on the top of the control
public void init() { COM com_Items; anytype var_Items; int h; ; super(); excombobox1.Columns().Add("Default"); var_Items = excombobox1.Items(); com_Items = var_Items; com_Items.LockedItemCount(0/*exTop*/,1); com_Items.CellCaption(com_Items.LockedItem(0/*exTop*/,0),COMVariant::createFromInt(0),"This is a locked item, fixed to the top side of the control."); h = com_Items.AddItem("Root 1"); com_Items.InsertItem(h,,"Child 1"); com_Items.InsertItem(h,,"Child 2"); com_Items.ExpandItem(h,true); } |
306 |
Is there any function to limit the height of the items when I display it using multiple lines
|
305 |
Why I cannot center my cells in the column
|
304 |
How can I align the cell to the left, center or to the right
public void init() { COM com_Items; anytype var_Items; ; super(); excombobox1.TreeColumnIndex(-1); excombobox1.DrawGridLines(-2/*exRowLines*/); excombobox1.Columns().Add("Default"); var_Items = excombobox1.Items(); com_Items = var_Items; com_Items.CellHAlignment(com_Items.AddItem("left"),COMVariant::createFromInt(0),0/*LeftAlignment*/); com_Items.CellHAlignment(com_Items.AddItem("center"),COMVariant::createFromInt(0),1/*CenterAlignment*/); com_Items.CellHAlignment(com_Items.AddItem("right"),COMVariant::createFromInt(0),2/*RightAlignment*/); } |
303 |
How do I apply HTML format to a cell
public void init() { COM com_Items; anytype var_Items; int h; str var_s,var_s1; ; super(); excombobox1.TreeColumnIndex(-1); var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql"; var_s = var_s + "Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0"; var_s = var_s + "ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN"; var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="; excombobox1.Images(COMVariant::createFromStr(var_s)); excombobox1.HTMLPicture("p1","c:\\exontrol\\images\\zipdisk.gif"); excombobox1.HTMLPicture("p2","c:\\exontrol\\images\\auction.gif"); excombobox1.Columns().Add("Default"); var_Items = excombobox1.Items(); com_Items = var_Items; h = com_Items.AddItem("The following item shows some of the HTML format supported:"); com_Items.CellHAlignment(h,COMVariant::createFromInt(0),1/*CenterAlignment*/); var_s1 = "<br>text icons <img>1</img>, <img>2</img>, ... pictures <img>p1</img>, <img>p2</img> <br><br>text <b>bold</b>, <i>italic</i>, <u"; var_s1 = var_s1 + ">underline</u>, <s>strikeout</s>, ...<br><dotline>and so on...<br> <a>anchor</a> or <a2>hyperlink</a><br><fgcolor=FF0000>fgcolor"; var_s1 = var_s1 + "</fgcolor> or <bgcolor=00FF00>bgcolor</bgcolor> "; h = com_Items.AddItem(COMVariant::createFromStr(var_s1)); com_Items.CellCaptionFormat(h,COMVariant::createFromInt(0),1/*exHTML*/); com_Items.CellSingleLine(h,COMVariant::createFromInt(0),false); } |
302 |
How can I change the font for a cell
|
301 |
How can I change the font for a cell
|